home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / extras / programm / gemfsc20 / gemfsc20.lzh / EXAMPLES / BROWSE / BRACTION.C next >
Text File  |  1992-12-07  |  678b  |  36 lines

  1. /**************************************************************************
  2.  * BRACTION - The default useraction handler for a browser.
  3.  *
  4.  *    Pity I never finished this concept.
  5.  *************************************************************************/
  6.  
  7. #include <gemfast.h>
  8. #include <osbind.h>
  9.  
  10. #define BROWSER_INTERNALS
  11. #include "browser.h"
  12.  
  13. #ifndef NULL
  14.   #define NULL 0L
  15. #endif
  16.  
  17. #ifndef TRUE
  18.   #define TRUE    1
  19.   #define FALSE 0
  20. #endif
  21.  
  22. int __br_action(browser, action, lparm)
  23.     Browser *browser;
  24.     int     action;
  25.     long    lparm;
  26. {
  27.     switch (action) {
  28.       case BR_KEYSTROKE:
  29.       case BR_SEARCHSTR:
  30.       case BR_PREDELETE:
  31.         break;
  32.     }
  33.     return TRUE;
  34. }
  35.  
  36.